home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cjoverkill_xss.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  74 lines

  1. #
  2. #  This script was written by David Maciejak <david dot maciejak at kyxar dot fr>
  3. #  based on work from
  4. #  (C) Tenable Network Security
  5. #
  6. #  Ref: aCiDBiTS
  7. #
  8. # This script is released under the GNU GPL v2
  9. #
  10.  
  11. if(description)
  12. {
  13.  script_id(15462);
  14.  script_bugtraq_id(11359);
  15.  script_version ("$Revision: 1.4 $");
  16.  
  17.  name["english"] = "CjOverkill trade.php XSS";
  18.  script_name(english:name["english"]);
  19.  
  20.  desc["english"] = "
  21. The remote server runs a version of CjOverkill, a free traffic trading 
  22. script which is as old as or older than version 4.0.3.
  23.  
  24. The remote version of this software is affected by a cross-site scripting 
  25. vulnerability in the script 'trade.php'. This issue is due to a failure 
  26. of the application to properly sanitize user-supplied input.
  27.  
  28. As a result of this vulnerability, it is possible for a remote attacker
  29. to create a malicious link containing script code that will be executed 
  30. in the browser of an unsuspecting user when followed. 
  31.  
  32. This may facilitate the theft of cookie-based authentication credentials 
  33. as well as other attacks.
  34.  
  35. Solution : Upgrade to version 4.0.4 or newer.
  36. Risk factor : Medium";
  37.  
  38.  script_description(english:desc["english"]);
  39.  
  40.  summary["english"] = "Check CjOverkill version";
  41.  script_summary(english:summary["english"]);
  42.  
  43.  script_category(ACT_GATHER_INFO);
  44.  
  45.  
  46.  script_copyright(english:"This script is Copyright (C) 2004 David Maciejak",
  47.         francais:"Ce script est Copyright (C) 2004 David Maciejak");
  48.         
  49.  family["english"] = "CGI abuses : XSS";
  50.  script_family(english:family["english"]);
  51.  script_dependencie("http_version.nasl");
  52.  script_require_ports("Services/www", 80);
  53.  exit(0);
  54. }
  55.  
  56. #
  57. # The script code starts here
  58. #
  59.  
  60. include("http_func.inc");
  61. include("http_keepalive.inc");
  62.  
  63. port = get_kb_item("Services/www");
  64. if(!port) port = 80;
  65. if(!can_host_php(port:port))exit(0);
  66.  
  67. if(get_port_state(port))
  68. {
  69.  buf = http_get(item:"/trade.php", port:port);
  70.  r = http_keepalive_send_recv(port:port, data:buf, bodyonly:1);
  71.  if( r == NULL )exit(0);
  72.  if(egrep(pattern:"<title>CjOverkill Version ([0-3]\.|4\.0\.[0-3][^0-9])</title>", string:r)) security_warning(port);
  73. }
  74.